home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / master / receive_udp < prev    next >
Text File  |  2001-04-06  |  752b  |  23 lines

  1. SYNOPSIS
  2.         void receive_imp(string host, string msg, int hostport)
  3.  
  4. DESCRIPTION
  5.         Handle a received IMP message.
  6.  
  7.         This function is called for every message received on the IMP
  8.         port. Usually it is passed on to some object that handles
  9.         inter mud communications.
  10.  
  11.         The driver first calls receive_udp(). If that method doesn't exist
  12.         and if the driver is compiled with USE_DEPRECATED, it will then
  13.         call receive_imp().
  14.  
  15. HISTORY
  16.         The 'hostport' argument was added in 3.2.1.
  17.     LDMud 3.2.9 renamed this method to receive_udp(); this old version
  18.       is supported if the driver is compiled with USE_DEPRECATED.
  19.  
  20. SEE ALSO
  21.         send_udp(E), query_udp_port(E), send_imp(E), query_imp_port(E)
  22.  
  23.